projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9d702b4
)
Tweak how byte-compile-print-syms fills
author
Glenn Morris
<rgm@gnu.org>
Mon, 17 Jun 2019 00:34:27 +0000
(17:34 -0700)
committer
Glenn Morris
<rgm@gnu.org>
Mon, 17 Jun 2019 00:37:21 +0000
(17:37 -0700)
* lisp/emacs-lisp/bytecomp.el (byte-compile-print-syms):
Use fill-column from the compile log buffer.
lisp/emacs-lisp/bytecomp.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/bytecomp.el
b/lisp/emacs-lisp/bytecomp.el
index 13d563bde91868cd92527e98463f4fa1e27c32b1..b917b713c06c776540c0d6cec6b4db80260a79b0 100644
(file)
--- a/
lisp/emacs-lisp/bytecomp.el
+++ b/
lisp/emacs-lisp/bytecomp.el
@@
-1601,7
+1601,10
@@
extra args."
(while syms
(setq s (symbol-name (pop syms))
L (+ L (length s) 2))
- (if (< L (1- fill-column))
+ (if (< L (1- (buffer-local-value 'fill-column
+ (or (get-buffer
+ byte-compile-log-buffer)
+ (current-buffer)))))
(setq str (concat str " " s (and syms ",")))
(setq str (concat str "\n " s (and syms ","))
L (+ (length s) 4))))